home *** CD-ROM | disk | FTP | other *** search
/ CD Exchange / CD Exchange - Volume 1.iso / s / parex.pxs < prev    next >
Text File  |  1993-11-25  |  3KB  |  71 lines

  1. ; PARex v3.x EXAMPLE DEFAULT SCRIPT < PARex.pxs > (stored in 'S:' directory)
  2. ; ~~~~~~~~~~
  3. ; Updated: 22-Nov-93
  4. ; Purpose: This script contains some example replace data.
  5. ;
  6.  
  7. ; PARex, Copyright ©1991-1993, Chris P. Vandierendonck, All Rights Reserved.
  8.  
  9. ; ###########################################################################
  10.  
  11. MODE WORDLIST
  12.  
  13.   ; This mode will set each word of the source file on a line of its own.
  14.   ; The replace data is very basic, and can be optimized very easily.
  15.  
  16.   REPL " "  BY "\n"
  17.   REPL ", " BY "\n"
  18.   REPL "; " BY "\n"
  19.   REPL ". " BY "\n"
  20.   REPL "? " BY "\n"
  21.   REPL "! " BY "\n"
  22.   REPL "("  BY "\n"
  23.   REPL ")"  BY "\n"
  24.   REPL "["  BY "\n"
  25.   REPL "]"  BY "\n"
  26.   REPL "{"  BY "\n"
  27.   REPL "}"  BY "\n"
  28.  
  29. ; ###########################################################################
  30.  
  31. MODE PRINTRAW
  32.  
  33.   ; This mode will convert the AmigaDOS printer control sequences to the
  34.   ; printer specific commands.
  35.   ; The replace data contains the most basic control sequences. The raw
  36.   ; printer commands are those of the StarLC24-10 printer and the HPIIIP
  37.   ; laserprinter (PCL5).
  38.   ; To use raw commands you must start PARex with the following arguments :
  39.   ;    -> StarLC24-10 : 'PARex MODE PRINTRAW'
  40.   ;    -> HPIIIP      : 'PARex MODE PRINTRAW WHEN HP'
  41.  
  42.   REPL \ec     BY \e@  OR \eE       WHEN HP ; init/reset printer
  43.   REPL \e[0m   BY \e5\eF\e-0\e_0\eT OR \e&d@\e(sbS WHEN HP ; reset to normal char set
  44.   REPL \e[1m   BY \eE  OR \e(s5B    WHEN HP ; bold on
  45.   REPL \e[22m  BY \eF  OR \e(sB     WHEN HP ; bold off
  46.   REPL \e[3m   BY \e4  OR \e(s1S    WHEN HP ; italic on
  47.   REPL \e[23m  BY \e5  OR \e(sS     WHEN HP ; italic off
  48.   REPL \e[4m   BY \e-1 OR \e&dD     WHEN HP ; underline on
  49.   REPL \e[24m  BY \e-0 OR \e&d@     WHEN HP ; underline off
  50.   REPL \e[0w   BY \eh0 OR \e(s10h1T WHEN HP ; normal pitch
  51.   REPL \e[2w   BY \eM  OR \e(s12h2T WHEN HP ; elite on
  52.   REPL \e[1w   BY \eP  OR \e(s10h1T WHEN HP ; elite off
  53.   REPL \e[4w   BY \cO  OR \e(s15H   WHEN HP ; condensed on
  54.   REPL \e[3w   BY \cR  OR \e(s10H   WHEN HP ; condensed off
  55.   REPL \e[6w   BY \eW1 OR ""        WHEN HP ; enlarged on
  56.   REPL \e[5w   BY \eW0 OR ""        WHEN HP ; enlarged off
  57.   REPL \e[2\"z BY \ex1 OR \e(s2Q    WHEN HP ; NLQ on
  58.   REPL \e[1\"z BY \ex0 OR \e(s1Q    WHEN HP ; NLQ off (draft)
  59.   REPL \e[4\"z BY \eG  OR \e(s3B    WHEN HP ; doublestrike on
  60.   REPL \e[3\"z BY \eH  OR \e(sB     WHEN HP ; doublestrike off
  61.   REPL \e[6\"z BY \eq2 OR \e(s7B    WHEN HP ; shadow on
  62.   REPL \e[5\"z BY \eq0 OR \e(sB     WHEN HP ; shadow off
  63.   REPL \e[2v   BY \eS0 OR ""        WHEN HP ; superscript on
  64.   REPL \e[1v   BY \eT  OR ""        WHEN HP ; superscript off
  65.   REPL \e[4v   BY \eS1 OR ""        WHEN HP ; subscript on
  66.   REPL \e[3v   BY \eT  OR ""        WHEN HP ; subscript off
  67.   REPL \e[0v   BY \eT  OR ""        WHEN HP ; normalize the line
  68.   REPL \e[2p   BY \ep1 OR \e(s1P    WHEN HP ; proportional characters on
  69.   REPL \e[1p   BY \ep0 OR \e(sP     WHEN HP ; proportional characters off
  70.  
  71.